From: Timm Bäder Date: Mon, 13 Dec 2021 14:26:00 +0000 (+0100) Subject: settings test: Print expected and seen values X-Git-Tag: archive/raspbian/4.6.5+ds-1+rpi1~1^2~91^2^2~41^2~2 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=e411081c848e9d30a829ad659c668900491635fb;p=gtk4.git settings test: Print expected and seen values That test breaks locally (and in CI it seems?), so at least print the values we see. --- diff --git a/testsuite/tools/settings.in b/testsuite/tools/settings.in index ea7ae6a67b..3c5ce69016 100755 --- a/testsuite/tools/settings.in +++ b/testsuite/tools/settings.in @@ -10,8 +10,11 @@ echo "1..1" name=gtk-query-settings result=$TEST_RESULT_DIR/$name.out $GTK_QUERY_SETTINGS 2>/dev/null >$result -if [ $(wc -l $result | cut -f1 -d' ') -eq 50 ]; then - echo "ok 1 $name" +EXPECTED=50 +SEEN=$(wc -l $result | cut -f1 -d' ') + +if [ $SEEN -eq $EXPECTED ]; then + echo "ok 1 $name." else - echo "not ok 1 $name" + echo "not ok 1 $name. Expected: $EXPECTED. Seen: $SEEN" fi